I am developing a demo application using TweetSharp Library and i want all followers of my users.
I'm using ListFollowers() method of TweetSharp library but it gives only 20 followers.
Help please.
Thanks in advance.
home / developersection / forums / how to get all followers from listfollowers() method of tweetsharp library ?
I am developing a demo application using TweetSharp Library and i want all followers of my users.
I'm using ListFollowers() method of TweetSharp library but it gives only 20 followers.
Help please.
Thanks in advance.
Sumit Kesarwani
03-Sep-2013You have to use NextCursor parameter in ListFollowers() method like this:
var followers = service.ListFollowers(new ListFollowersOptions { Cursor = -1});
Hope this will solve your problem.